home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / dec92.zip / 1012074A < prev    next >
Text File  |  1992-10-13  |  398b  |  23 lines

  1. /* find1.c:    Extract lines from a file */
  2.  
  3. #include <stdio.h>
  4. #include <string.h>
  5.  
  6. #define WIDTH 128
  7.  
  8. main(int argc, char *argv[])
  9. {
  10.     char line[WIDTH];
  11.     char *search_str;
  12.  
  13.     if (argc == 1)
  14.         return 1;   /* Search string required */
  15.     search_str = argv[1];
  16.  
  17.     while (gets(line))
  18.         if (strstr(line,search_str))
  19.             puts(line);
  20.  
  21.     return 0;
  22. }
  23.